home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #1 / Amiga Plus CD - 2000 - No. 1.iso / Tools / Dev / Sas-PPC / examples / smakefile < prev   
Encoding:
Makefile  |  1999-12-03  |  332 b   |  16 lines

  1. all: runelf hello.elf calc.elf
  2.  
  3.  
  4. hello.elf: hello.o 
  5.     ppc-amigaos-ld -r -o hello.elf lib:c_ppc.o hello.o lib:scppc.a lib:end.o
  6.     
  7. runelf: runelf.c
  8.     sc nostackcheck nostartup link runelf.c
  9.  
  10.  
  11. calc.elf: calc.o 
  12.    ppc-amigaos-ld -r -o calc.elf lib:c_ppc.o calc.o lib:scppc.a lib:end.o
  13.    
  14. .c.o:
  15.      scppc dbg sf objname $@ $<
  16.